home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap02 / howto07 / ccfmgr7.dpr next >
Encoding:
Text File  |  1996-03-01  |  386 b   |  18 lines

  1. program Ccfmgr7;
  2.  
  3. uses
  4.   Forms,
  5.   Ufmgr7 in 'UFMGR7.PAS' {CCFileMgrForm},
  6.   Dddfunit in 'DDDFUNIT.PAS' {DestDDForm},
  7.   Drwsutl2 in 'DRWSUTL2.PAS',
  8.   Drwsutl1 in 'DRWSUTL1.PAS';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Title := 'CC File Center';
  14.   Application.CreateForm(TCCFileMgrForm, CCFileMgrForm);
  15.   Application.CreateForm(TDestDDForm, DestDDForm);
  16.   Application.Run;
  17. end.
  18.